Skip to main content
POST
/
v1
/
transcripts
/
{video_id}
/
merges
Submit a video-level entity merge ("this name in this video is entity X")
curl --request POST \
  --url https://api.arcmira.com/v1/transcripts/{video_id}/merges \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sourceName": "<string>",
  "targetEntityId": 123
}
'
{
  "error": {
    "type": "<string>",
    "code": "<string>",
    "message": "<string>",
    "doc_url": "<string>",
    "request_id": "<string>",
    "param": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
sourceName
string
required

The name as it appears in this video (e.g. a first-name-only mention).

Required string length: 1 - 120
targetEntityId
integer
required

The canonical entity these mentions actually refer to.

replaceWith
string

Optional respelling applied to the transcript text (e.g. "Imad" → "Emad").

Maximum string length: 120
revision
string

Response

Success